Game of Life

Terms from Artificial Intelligence: humans at the heart of algorithms

Game of Life is a simple two-state cellular automata based on a rectangular grid of squares, where each square is colured as active (alive) or a background color (dead or empty). If an empty cell has three live neighbours it becomes active/alive. If a live cell has two many live neighbours (4 or more) it is overcrowded and dies. If it has only one live neighbour it is lonely and also dies. From these simple rules many dynamic patterns emerge.

Used on page 377

Also known as Conway's Game of Life

Game of Life -- rules